home *** CD-ROM | disk | FTP | other *** search
- % -----------------------------------------------------------------------------
- % Text file demonstration *TERMINATE PRESCRIPTION*
- % -----------------------------------------------------------------------------
- %
- % Version : 1.00
- % Filename : SHOWTEXT.TSL
- % Company : SerWiz Comm
- % Programmer : Bo Bendtsen
- % Module created : 06 Aug 1995
- % Latest revision : 06 Aug 1995
- % Language/version : Terminate Prescription 1.00
- % Remarks : Opens and shows the contents of a text file
- %
- % -----------------------------------------------------------------------------
-
- ClearScreen
- Window 1,1,80,20,6,0,23,23,27," Show text file "
- WriteAStr 2,0,31," Esc to Abort "
-
- Set Key=0
- Set Filename = "C:\AUTOEXEC.BAT"
- Repeat
- Set Filename=Input(1,18,41,23,31,Filename)
- PrintLn
- If Key<>27
- OpenText 1,Filename,0
- If IOResult=0
- Set IOResult=0
- While EndofTextFile(1)=0
- PrintLn readtext(1)
- EndWhile
- CloseText 1
- Else
- PrintLn "Could not open file"
- Endif
- Endif
- Until Key=27
-
- RemoveWindow
-
-